Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

helper-cache

Package Overview
Dependencies
Maintainers
2
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

helper-cache

Easily register and get helper functions to be passed to any template engine or node.js application. Methods for both sync and async helpers.

  • 0.7.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
33K
increased by17.52%
Maintainers
2
Weekly downloads
 
Created
Source

helper-cache NPM version Build Status

Easily register and get helper functions to be passed to any template engine or node.js application. Methods for both sync and async helpers.

Install with npm

npm i helper-cache --save

Usage

HelperCache

Create an instance of HelperCache, optionally passing default options.

  • options {Object}: Default options to use.
    • bind {Boolean}: Bind functions to this. Defaults to false.
    • thisArg {Boolean}: The context to use.
var HelperCache = require('helper-cache');
var helpers = new HelperCache();

.addHelper

Register a helper.

  • name {String}: The name of the helper.
  • fn {Function}: Helper function.
  • returns {Object}: Return this to enable chaining
helpers.addHelper('lower', function(str) {
  return str.toLowerCase();
});

.addAsyncHelper

Register an async helper.

  • key {String}: The name of the helper.
  • fn {Function}: Helper function.
  • returns {Object}: Return this to enable chaining
helpers.addAsyncHelper('foo', function (str, callback) {
  callback(null, str + ' foo');
});

.addHelpers

Load an object of helpers.

  • key {String}: The name of the helper.
  • fn {Function}: Helper function.
  • returns {Object}: Return this to enable chaining.
helpers.addHelpers({
  a: function() {},
  b: function() {},
  c: function() {},
});

.addAsyncHelpers

Load an object of async helpers.

  • key {String}: The name of the helper.
  • fn {Function}: Helper function.
  • returns {Object}: Return this to enable chaining
helpers.addAsyncHelpers({
  a: function() {},
  b: function() {},
  c: function() {},
});

.getHelper

Get a registered helper.

  • key {String}: The helper to get.
  • returns {Object}: The specified helper. If no key is passed, the entire cache is returned.
helpers.getHelper('foo');

Running tests

Install dev dependencies:

npm i -d && npm test

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue

Author

Jon Schlinkert

License

Copyright (c) 2014-2015 Jon Schlinkert
Released under the MIT license


This file was generated by verb-cli on April 23, 2015.

Keywords

FAQs

Package last updated on 21 Aug 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc